Product Code Database
Example Keywords: winter -ipod $3
   » » Wiki: Associative Property
Tag Wiki 'Associative Property'.
Tag

In , the associative property

(1974). 9780387905181, Springer.
is a property of some that rearranging the in an expression will not change the result. In propositional logic, associativity is a valid rule of replacement for expressions in .

Within an expression containing two or more occurrences in a row of the same associative operator, the order in which the operations are performed does not matter as long as the sequence of the is not changed. That is (after rewriting the expression with parentheses and in infix notation if necessary), rearranging the parentheses in such an expression will not change its value. Consider the following equations:

\begin{align} (2 + 3) + 4 &= 2 + (3 + 4) = 9 \,\\ 2 \times (3 \times 4) &= (2 \times 3) \times 4 = 24 . \end{align}

Even though the parentheses were rearranged on each line, the values of the expressions were not altered. Since this holds true when performing addition and multiplication on any , it can be said that "addition and multiplication of real numbers are associative operations".

Associativity is not the same as , which addresses whether the order of two operands affects the result. For example, the order does not matter in the multiplication of real numbers, that is, , so we say that the multiplication of real numbers is a commutative operation. However, operations such as function composition and matrix multiplication are associative, but not (generally) commutative.

Associative operations are abundant in mathematics; in fact, many algebraic structures (such as semigroups and categories) explicitly require their binary operations to be associative. However, many important and interesting operations are non-associative; some examples include , , and the vector cross product. In contrast to the theoretical properties of real numbers, the addition of numbers in computer science is not associative, and the choice of how to associate an expression can have a significant effect on rounding error.


Definition
Formally, a \ast on a set is called associative if it satisfies the associative law:
(x \ast y) \ast z = x \ast (y \ast z), for all x,y,z in .

Here, ∗ is used to replace the symbol of the operation, which may be any symbol, and even the absence of symbol (juxtaposition) as for .

(xy)z = x(yz), for all x,y,z in .

The associative law can also be expressed in functional notation thus: (f \circ (g \circ h))(x) = ((f \circ g) \circ h)(x)


Generalized associative law
If a binary operation is associative, repeated application of the operation produces the same result regardless of how valid pairs of parentheses are inserted in the expression.
(1992). 9780471510017, Wiley. .
This is called the generalized associative law.

The number of possible bracketings is just the , C_n , for n operations on n+1 values. For instance, a product of 3 operations on 4 elements may be written (ignoring permutations of the arguments), in C_3 = 5 possible ways:

  • ((ab)c)d
  • (a(bc))d
  • a((bc)d)
  • a(b(cd))
  • (ab)(cd)

If the product operation is associative, the generalized associative law says that all these expressions will yield the same result. So unless the expression with omitted parentheses already has a different meaning (see below), the parentheses can be considered unnecessary and "the" product can be written unambiguously as

abcd
As the number of elements increases, the number of possible ways to insert parentheses grows quickly, but they remain unnecessary for disambiguation.

An example where this does not work is the logical biconditional . It is associative; thus, is equivalent to , but most commonly means , which is not equivalent.


Examples
Some examples of associative operations include the following.


Propositional logic

Rule of replacement
In standard truth-functional propositional logic, association,
(2025). 9781259690877, McGraw-Hill Education.
(2025). 9781292024820, Pearson Education.
or associativity
(2025). 9781305958098, Cengage Learning.
are two valid rules of replacement. The rules allow one to move parentheses in logical expressions in . The rules (using logical connectives notation) are:

(P \lor (Q \lor R)) \Leftrightarrow ((P \lor Q) \lor R)

and

(P \land (Q \land R)) \Leftrightarrow ((P \land Q) \land R),

where "\Leftrightarrow" is a symbol representing "can be replaced in a with".


Truth functional connectives
Associativity is a property of some logical connectives of truth-functional propositional logic. The following logical equivalences demonstrate that associativity is a property of particular connectives. The following (and their converses, since is commutative) are truth-functional tautologies.

Associativity of disjunction
((P \lor Q) \lor R) \leftrightarrow (P \lor (Q \lor R))
Associativity of conjunction
((P \land Q) \land R) \leftrightarrow (P \land (Q \land R))
Associativity of equivalence
((P \leftrightarrow Q) \leftrightarrow R) \leftrightarrow (P \leftrightarrow (Q \leftrightarrow R))

is an example of a truth functional connective that is not associative.


Non-associative operation
A binary operation * on a set S that does not satisfy the associative law is called non-associative. Symbolically,

(x*y)*z\ne x*(y*z)\qquad\mbox{for some }x,y,z\in S.

For such an operation the order of evaluation does matter. For example:

(5-3)-2 \, \ne \, 5-(3-2)
Division
(4/2)/2 \, \ne \, 4/(2/2)
2^{(1^2)} \, \ne \, (2^1)^2
Vector cross product
\begin{align}
 \mathbf{i} \times (\mathbf{i} \times \mathbf{j}) &= \mathbf{i} \times \mathbf{k} = -\mathbf{j} \\
 (\mathbf{i} \times \mathbf{i}) \times \mathbf{j} &= \mathbf{0} \times \mathbf{j} = \mathbf{0}
     
\end{align}

Also although addition is associative for finite sums, it is not associative inside infinite sums (series). For example, (1+-1)+(1+-1)+(1+-1)+(1+-1)+(1+-1)+(1+-1)+\dots = 0 whereas 1+(-1+1)+(-1+1)+(-1+1)+(-1+1)+(-1+1)+(-1+1)+\dots = 1.

Some non-associative operations are fundamental in mathematics. They appear often as the multiplication in structures called non-associative algebras, which have also an addition and a scalar multiplication. Examples are the and . In Lie algebras, the multiplication satisfies instead of the associative law; this allows abstracting the algebraic nature of infinitesimal transformations.

Other examples are , , non-associative ring, and commutative non-associative magmas.


Nonassociativity of floating point calculation
In mathematics, addition and multiplication of real numbers are associative. By contrast, in computer science, addition and multiplication of numbers are not associative, as different rounding errors may be introduced when dissimilar-sized values are joined in a different order.Knuth, Donald, The Art of Computer Programming, Volume 3, section 4.2.2

To illustrate this, consider a floating point representation with a 4-bit :

Even though most computers compute with 24 or 53 bits of significand,

(2008). 9780738157535
this is still an important source of rounding error, and approaches such as the Kahan summation algorithm are ways to minimise the errors. It can be especially problematic in parallel computing.


Notation for non-associative operations
In general, parentheses must be used to indicate the order of evaluation if a non-associative operation appears more than once in an expression (unless the notation specifies the order in another way, like \dfrac{2}{3/4}). However, agree on a particular order of evaluation for several common non-associative operations. This is simply a notational convention to avoid parentheses.

A left-associative operation is a non-associative operation that is conventionally evaluated from left to right, i.e.,

\left. \begin{array}{l} a*b*c=(a*b)*c \\ a*b*c*d=((a*b)*c)*d \\ a*b*c*d*e=(((a*b)*c)*d)*e\quad \\ \mbox{etc.} \end{array} \right\} \mbox{for all }a,b,c,d,e\in S

while a right-associative operation is conventionally evaluated from right to left:

\left. \begin{array}{l} x*y*z=x*(y*z) \\ w*x*y*z=w*(x*(y*z))\quad \\ v*w*x*y*z=v*(w*(x*(y*z)))\quad\\ \mbox{etc.} \end{array} \right\} \mbox{for all }z,y,x,w,v\in S

Both left-associative and right-associative operations occur. Left-associative operations include the following:

x-y-z=(x-y)-z
x/y/z=(x/y)/z
Function application
(f \, x \, y) = ((f \, x) \, y)
This notation can be motivated by the isomorphism, which enables partial application.

Right-associative operations include the following:

of real numbers in superscript notation
x^{y^z}=x^{(y^z)}

Exponentiation is commonly used with brackets or right-associatively because a repeated left-associative exponentiation operation is of little use. Repeated powers would mostly be rewritten with multiplication:

(x^y)^z=x^{(yz)}

Formatted correctly, the superscript inherently behaves as a set of parentheses; e.g. in the expression 2^{x+3} the addition is performed before the exponentiation despite there being no explicit parentheses 2^{(x+3)} wrapped around it. Thus given an expression such as x^{y^z}, the full exponent y^z of the base x is evaluated first. However, in some contexts, especially in handwriting, the difference between {x^y}^z=(x^y)^z, x^{yz}=x^{(yz)} and x^{y^z}=x^{(y^z)} can be hard to see. In such a case, right-associativity is usually implied.

Function definition
\mathbb{Z} \rarr \mathbb{Z} \rarr \mathbb{Z} = \mathbb{Z} \rarr (\mathbb{Z} \rarr \mathbb{Z})
x \mapsto y \mapsto x - y = x \mapsto (y \mapsto x - y)

Using right-associative notation for these operations can be motivated by the Curry–Howard correspondence and by the isomorphism.

Non-associative operations for which no conventional evaluation order is defined include the following.

(x^\wedge y)^\wedge z\ne x^\wedge(y^\wedge z)
Knuth's up-arrow operators
a \uparrow \uparrow (b \uparrow \uparrow c) \ne (a \uparrow \uparrow b) \uparrow \uparrow c
a \uparrow \uparrow \uparrow (b \uparrow \uparrow \uparrow c) \ne (a \uparrow \uparrow \uparrow b) \uparrow \uparrow \uparrow c
Taking the of three vectors
\vec a \times (\vec b \times \vec c) \neq (\vec a \times \vec b ) \times \vec c \qquad \mbox{ for some } \vec a,\vec b,\vec c \in \mathbb{R}^3
Taking the pairwise of real numbers
{(x+y)/2+z\over2}\ne{x+(y+z)/2\over2} \qquad \mbox{for all }x,y,z\in\mathbb{R} \mbox{ with }x\ne z.
Taking the relative complement of sets
(A\backslash B)\backslash C \neq A\backslash (B\backslash C).

(Compare material nonimplication in logic.)


History
William Rowan Hamilton seems to have coined the term "associative property" around 1844, a time when he was contemplating the non-associative algebra of the he had learned about from John T. Graves.


Relationship with commutativity in certain special cases
In general, associative operations are not commutative. However, under certain special conditions, it may be the case that associativity implies commutativity. Associative operators defined on an interval of the real number line are commutative if they are continuous and injective in both arguments.
(1966). 9780080955254, Academic Press. .
A consequence is that every continuous, associative operator on two real inputs that is strictly increasing in each of its inputs is commutative.


See also
  • Light's associativity test
  • Telescoping series, the use of addition associativity for cancelling terms in an infinite series
  • A is a set with an associative binary operation.
  • and are two other frequently discussed properties of binary operations.
  • Power associativity, , and N-ary associativity are weak forms of associativity.
  • also provide a weak form of associativity.

Page 1 of 1
1
Page 1 of 1
1

Account

Social:
Pages:  ..   .. 
Items:  .. 

Navigation

General: Atom Feed Atom Feed  .. 
Help:  ..   .. 
Category:  ..   .. 
Media:  ..   .. 
Posts:  ..   ..   .. 

Statistics

Page:  .. 
Summary:  .. 
1 Tags
10/10 Page Rank
5 Page Refs
2s Time